1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26 package com.sun.imageio.plugins.gif;
27
28 import java.util.ListResourceBundle;
29
30 public class GIFImageMetadataFormatResources extends ListResourceBundle {
31
32 public GIFImageMetadataFormatResources() {}
33
34 protected Object[][] getContents() {
35 return new Object[][] {
36
37
38 { "ImageDescriptor", "The image descriptor" },
39 { "LocalColorTable", "The local color table" },
40 { "ColorTableEntry", "A local color table entry" },
41 { "GraphicControlExtension", "A graphic control extension" },
42 { "PlainTextExtension", "A plain text (text grid) extension" },
43 { "ApplicationExtensions", "A set of application extensions" },
44 { "ApplicationExtension", "An application extension" },
45 { "CommentExtensions", "A set of comments" },
46 { "CommentExtension", "A comment" },
47
48
49 { "ImageDescriptor/imageLeftPosition",
50 "The X offset of the image relative to the screen origin" },
51 { "ImageDescriptor/imageTopPosition",
52 "The Y offset of the image relative to the screen origin" },
53 { "ImageDescriptor/imageWidth",
54 "The width of the image" },
55 { "ImageDescriptor/imageHeight",
56 "The height of the image" },
57 { "ImageDescriptor/interlaceFlag",
58 "True if the image is stored using interlacing" },
59 { "LocalColorTable/sizeOfLocalColorTable",
60 "The number of entries in the local color table" },
61 { "LocalColorTable/sortFlag",
62 "True if the local color table is sorted by frequency" },
63 { "ColorTableEntry/index", "The index of the color table entry" },
64 { "ColorTableEntry/red",
65 "The red value for the color table entry" },
66 { "ColorTableEntry/green",
67 "The green value for the color table entry" },
68 { "ColorTableEntry/blue",
69 "The blue value for the color table entry" },
70 { "GraphicControlExtension/disposalMethod",
71 "The disposal method for this frame" },
72 { "GraphicControlExtension/userInputFlag",
73 "True if the frame should be advanced based on user input" },
74 { "GraphicControlExtension/transparentColorFlag",
75 "True if a transparent color exists" },
76 { "GraphicControlExtension/delayTime",
77 "The time to delay between frames, in hundredths of a second" },
78 { "GraphicControlExtension/transparentColorIndex",
79 "The transparent color, if transparentColorFlag is true" },
80 { "PlainTextExtension/textGridLeft",
81 "The X offset of the text grid" },
82 { "PlainTextExtension/textGridTop",
83 "The Y offset of the text grid" },
84 { "PlainTextExtension/textGridWidth",
85 "The number of columns in the text grid" },
86 { "PlainTextExtension/textGridHeight",
87 "The number of rows in the text grid" },
88 { "PlainTextExtension/characterCellWidth",
89 "The width of a character cell" },
90 { "PlainTextExtension/characterCellHeight",
91 "The height of a character cell" },
92 { "PlainTextExtension/textForegroundColor",
93 "The text foreground color index" },
94 { "PlainTextExtension/textBackgroundColor",
95 "The text background color index" },
96 { "ApplicationExtension/applicationID",
97 "The application ID" },
98 { "ApplicationExtension/authenticationCode",
99 "The authentication code" },
100 { "CommentExtension/value", "The comment" },
101
102 };
103 }
104 }